home *** CD-ROM | disk | FTP | other *** search
/ Champak 103 / Vol 103.iso / games / starship.swf / scripts / DefineButton2_80 / BUTTONCONDACTION on(release, keyPress Enter).as
Text File  |  2010-03-13  |  449b  |  24 lines

  1. on(release, keyPress "<Enter>"){
  2.    if(input ne "")
  3.    {
  4.       result = "";
  5.       i = 0;
  6.       while(code.length >= i)
  7.       {
  8.          if(code[i] eq input)
  9.          {
  10.             startlevel = i;
  11.             result = "password for level " + i;
  12.             gotoAndPlay(81);
  13.             break;
  14.          }
  15.          i++;
  16.       }
  17.       if(result == "")
  18.       {
  19.          result = "bad password";
  20.          input = "";
  21.       }
  22.    }
  23. }
  24.